home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / fracblank / source / fraccommodity.h < prev    next >
C/C++ Source or Header  |  2004-08-03  |  613b  |  31 lines

  1. // BlankerControl data
  2.  
  3. extern struct Process *BlankerControlProcess;
  4.  
  5. // BlankerEntry data
  6.  
  7. extern struct SignalSemaphore BlankSemaphore;
  8. extern struct Screen         *BlankScreen;
  9. extern struct Task           *BlankTask;
  10. extern ULONG                  CycleMask;
  11.  
  12. // Screen and pattern change timeout
  13.  
  14. extern ULONG ScreenCount,
  15.              ScreenTimeout,
  16.              PatternCount,
  17.              PatternTimeout;
  18.  
  19. // The current colour mode
  20.  
  21. extern UBYTE ColourMode;
  22.  
  23. // The process responsible for saving the screen data to the clipboard
  24.  
  25. extern struct Process *Saver;
  26.  
  27. // Prototypes
  28.  
  29. extern VOID SaverEntry();
  30.  
  31.